***Antipattern***
Count: 4
POST  /token [Singular last node with POST method.] 
POST  /accounts [Singular last node with POST method.] 
POST  /assets [Singular last node with POST method.] 
POST  /assets/assetId/events [Singular last node with POST method.] 

***Pattern***
Count: 10
GET  /accountsregular methods.
GET  /accounts/accountAddressregular methods.
PUT  /accounts/accountAddress [Pluralized last node with PUT|DELETE method.] 
GET  /assets/assetIdregular methods.
GET  /assetsregular methods.
GET  /events/eventIdregular methods.
GET  /eventsregular methods.
GET  /bundle/bundleIdregular methods.
GET  /bundle/bundleId/inforegular methods.
GET  /nodeinforegular methods.
